DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / FilterUnaryExpression<T> Class / FilterUnaryExpression<T> Constructor
The path of the data item to which the filter will be applied.
The filter operation.
The value to be filtered.

In This Topic
    FilterUnaryExpression<T> Constructor
    In This Topic
    Initializes a new instance of the FilterUnaryExpression<T> class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal filterPath As Expression(Of Func(Of T,Object)), _
       ByVal filterOperation As FilterOperation, _
       ByVal value As Object _
    )
    public FilterUnaryExpression<T>( 
       Expression<Func<T,object>> filterPath,
       FilterOperation filterOperation,
       object value
    )

    Parameters

    filterPath
    The path of the data item to which the filter will be applied.
    filterOperation
    The filter operation.
    value
    The value to be filtered.
    See Also